home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / text / dtp / loutSrc205.readme < prev    next >
Text File  |  1993-08-02  |  870b  |  30 lines

  1. Short: Lout sources (UNIX, Amiga)
  2. Type: text/dtp
  3. Uploader:  dylan@cs.washington.edu
  4.  
  5. Notes:
  6. Using gcc, the only change required to these sources for use on the
  7. Amiga is to the format of the sort command in z33.c.  I changed 
  8. the line: (line 211)
  9.     sprintf(buff, "sort -o %s %s", newname, oldname);
  10.  
  11. to the lines:
  12. #ifndef AMIGA
  13.     sprintf(buff, "sort -o %s %s", newname, oldname);
  14. #else AMIGA
  15.     sprintf(buff, "sort TO %s FROM %s", newname, oldname);
  16. #endif AMIGA
  17.  
  18. Note:  I have _not_ made these changes to the enclosed archive, which
  19. is identical to Jeff Kingston's release.
  20.  
  21. For the release, since I only have 7 Meg of memory, I turned off
  22. optimization for z06.c, z08.c, and z20.c.
  23.  
  24. I would prefer to have an SAS/C compiled version, but the UNIX-isms,
  25. and size of the code has made that tricky.  If this changes, I'll
  26. post an update.
  27.  
  28. dylan
  29. dylan@cs.washington.edu
  30.